home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / text / edit / vim60src.lha / Vim / vim60 / src / proto / edit.pro < prev    next >
Encoding:
Text File  |  2001-09-26  |  1.5 KB  |  36 lines

  1. /* edit.c */
  2. int edit __ARGS((int cmdchar, int startln, long count));
  3. void edit_putchar __ARGS((int c, int highlight));
  4. void edit_unputchar __ARGS((void));
  5. void display_dollar __ARGS((colnr_T col));
  6. void change_indent __ARGS((int type, int amount, int round, int replaced));
  7. void truncate_spaces __ARGS((char_u *line));
  8. void backspace_until_column __ARGS((int col));
  9. int vim_is_ctrl_x_key __ARGS((int c));
  10. int ins_compl_add_infercase __ARGS((char_u *str, int len, char_u *fname, int dir, int reuse));
  11. char_u *find_word_start __ARGS((char_u *ptr));
  12. char_u *find_word_end __ARGS((char_u *ptr));
  13. void ins_compl_check_keys __ARGS((void));
  14. int get_literal __ARGS((void));
  15. void insertchar __ARGS((int c, int flags, int second_indent));
  16. int comp_textwidth __ARGS((int ff));
  17. int stop_arrow __ARGS((void));
  18. void set_last_insert __ARGS((int c));
  19. char_u *add_char2buf __ARGS((int c, char_u *s));
  20. void beginline __ARGS((int flags));
  21. int oneright __ARGS((void));
  22. int oneleft __ARGS((void));
  23. int cursor_up __ARGS((long n, int upd_topline));
  24. int cursor_down __ARGS((long n, int upd_topline));
  25. int stuff_inserted __ARGS((int c, long count, int no_esc));
  26. char_u *get_last_insert __ARGS((void));
  27. char_u *get_last_insert_save __ARGS((void));
  28. void replace_push __ARGS((int c));
  29. void fixthisline __ARGS((int (*get_the_indent)(void)));
  30. void fix_indent __ARGS((void));
  31. int in_cinkeys __ARGS((int keytyped, int when, int line_is_empty));
  32. int hkmap __ARGS((int c));
  33. void ins_scroll __ARGS((void));
  34. void ins_horscroll __ARGS((void));
  35. /* vim: set ft=c : */
  36.